home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / etc / acpi / resume.d / 62-ifup.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2009-03-27  |  302 b   |  12 lines

  1. #!/bin/sh
  2.  
  3. # Bring up the interfaces. This should probably be left up to some policy
  4. # manager, but at the moment we just bring back all the ifupdown-managed
  5. # interfaces that were up at suspend time.
  6. for x in $IFUP_INTERFACES; do
  7.     if must_control_interface $x ; then
  8.         ifup $x &
  9.     fi
  10. done
  11.  
  12.